home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-04-19 | 520 b | 20 lines | [TEXT/MPS ] |
- // Copyright © 1992-1993 Emergent Behavior. All rights reserved.
-
- //================================================================
- #ifndef _TBENCHMARKDOCUMENT_
- #include "TBenchMarkDocument.h"
- #endif
-
- #pragma segment Main
- //================================================================
- void
- main()
- {
- const OSType kFileType = 'BNCH';
- const OSType kCreator = 'QBCH';
-
- TApplication::InitToolbox();
- TApplication theApp(kCreator, kFileType);
- theApp.AdoptProtoDocument( new TBenchMarkDocument() );
- theApp.Run();
- }